home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
Virtual Listview
/
virtuallistview.dpr
next >
Wrap
Text File
|
1998-06-16
|
203b
|
14 lines
program VirtualListView;
uses
Forms,
VListView in 'VListView.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.